home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
T U R B O Language
/
Turbo C v3.0
/
TC3SETUP.EXE
/
EXAMPLES
/
POINT.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-02-18
|
1KB
|
35 lines
// Borland C++ - (C) Copyright 1991 by Borland International
// POINT.CPP - Example from Getting Started
// Illustrates a simple Point class
#include <iostream.h> // needed for C++ I/O
class Point { // define Point class
int X; // X and Y are private by default
int Y;
public:
Point(int InitX, int InitY) {X = InitX; Y = InitY;}
int GetX() {return X;} // public member functions
int GetY() {return Y;}
};
int main()
{
int YourX, YourY;
cout << "Set X coordinate: "; // screen prompt
cin >> YourX; // keyboard input to YourX
cout << "Set Y coordinate: "; // another prompt
cin >> YourY; // key value for YourY
Point YourPoint(YourX, YourY); // declaration calls constructor
cout << "X is " << YourPoint.GetX(); // call member function
cout << '\n'; // newline
cout << "Y is " << YourPoint.GetY(); // call member function
cout << '\n';
return 0;
}